home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / events / ScrollEventDetail.as < prev    next >
Encoding:
Text File  |  2008-10-29  |  1.2 KB  |  46 lines

  1. package mx.events
  2. {
  3.    import mx.core.mx_internal;
  4.    
  5.    use namespace mx_internal;
  6.    
  7.    public final class ScrollEventDetail
  8.    {
  9.       mx_internal static const VERSION:String = "3.0.0.0";
  10.       
  11.       public static const AT_BOTTOM:String = "atBottom";
  12.       
  13.       public static const AT_LEFT:String = "atLeft";
  14.       
  15.       public static const AT_RIGHT:String = "atRight";
  16.       
  17.       public static const AT_TOP:String = "atTop";
  18.       
  19.       public static const LINE_DOWN:String = "lineDown";
  20.       
  21.       public static const LINE_LEFT:String = "lineLeft";
  22.       
  23.       public static const LINE_RIGHT:String = "lineRight";
  24.       
  25.       public static const LINE_UP:String = "lineUp";
  26.       
  27.       public static const PAGE_DOWN:String = "pageDown";
  28.       
  29.       public static const PAGE_LEFT:String = "pageLeft";
  30.       
  31.       public static const PAGE_RIGHT:String = "pageRight";
  32.       
  33.       public static const PAGE_UP:String = "pageUp";
  34.       
  35.       public static const THUMB_POSITION:String = "thumbPosition";
  36.       
  37.       public static const THUMB_TRACK:String = "thumbTrack";
  38.       
  39.       public function ScrollEventDetail()
  40.       {
  41.          super();
  42.       }
  43.    }
  44. }
  45.  
  46.